home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / benchmarks / itc / sld / RCS / Makefile,v < prev   
Encoding:
Text File  |  1992-05-12  |  1008 b   |  66 lines

  1. head     1.2;
  2. branch   ;
  3. access   ;
  4. symbols  ;
  5. locks    ; strict;
  6. comment  @# @;
  7.  
  8.  
  9. 1.2
  10. date     92.05.12.14.59.24;  author kupfer;  state Exp;
  11. branches ;
  12. next     1.1;
  13.  
  14. 1.1
  15. date     92.05.12.14.46.22;  author kupfer;  state Exp;
  16. branches ;
  17. next     ;
  18.  
  19.  
  20. desc
  21. @@
  22.  
  23.  
  24. 1.2
  25. log
  26. @Include the sources for bsearch(), for environments that don't have it
  27. or that have a non-ANSI variant.
  28. @
  29. text
  30. @# 
  31. # The FIRST_BYTE preprocessor variable should be set to HIGH if the
  32. # host machine puts the most significant byte of a number first (e.g.
  33. # 68000s), and otherwise should be set to LOW (e.g. VAXes).
  34. # The FLOATING_FORM variable should be set to IEEE if the host machine
  35. # uses IEEE format, or else to OTHER.
  36. #
  37. # $Header$
  38. #
  39.  
  40. OBJS        = sld.o bsearch.o 
  41.  
  42. CFLAGS        = -O -DFIRST_BYTE=LOW -DFLOATING_FORM=IEEE \
  43.             -DTARGET=HOST -I../sas
  44.  
  45. ../bin/sld:        $(OBJS)
  46.     $(CC) $(OBJS) -o ../bin/sld
  47.  
  48. clean:
  49.     rm -f *.o ../bin/sld
  50. @
  51.  
  52.  
  53. 1.1
  54. log
  55. @Initial revision
  56. @
  57. text
  58. @d9 2
  59. d12 2
  60. d17 2
  61. a18 2
  62. ../bin/sld:        sld.o
  63.     $(CC) sld.o -o ../bin/sld
  64. @
  65.